home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 07 - 1991 / 07.08 Aug 91 / Modeless SF Source / Starter.p < prev    next >
Encoding:
Text File  |  1991-01-13  |  551 b   |  26 lines  |  [TEXT/PJMM]

  1. {****************************************************}
  2. {}
  3. {        Starter.p                                                                            }
  4. {}
  5. {        A starter main file for writing programs with the                            }
  6. {        THINK Class Library                                                                }
  7. {}
  8. {        Copyright © 1989, Symantec Corporation.  All rights reserved.            }
  9. {}
  10. {****************************************************}
  11.  
  12.  
  13. PROGRAM Starter;
  14.  
  15.         { Turn off automatic initialization }
  16. {$I-}
  17.  
  18. USES
  19.     TCL, CSFDialogs, StarterIntf;
  20.  
  21. BEGIN
  22.     new(CStarterApp(gApplication));
  23.     CStarterApp(gApplication).IStarterApp;
  24.     gApplication.Run;
  25.     gApplication.Exit;
  26. END.